Documentation > CMS Template API Library > Input > StartTabbedPanel(String[])
StartTabbedPanel
Starts the tabbed panel. Similar to a windows panel, a tabbed panel (unlike an expand panel) displays a list of tabs that when selected shows the hidden panel.
public System.Void StartTabbedPanel(String[])
Parameters
Name | Description | Type |
---|---|---|
titles | The titles for each tab separated by a comma. | System.String[] |
Code Example
C#
Sample:
Input.StartTabbedPanel("Option1", "Option2", "Option3"); Input.ShowTextBox("Option1", "option1"); Input.NextTabbedPanel(); Input.ShowTextBox("Option2", "option2"); Input.NextTabbedPanel(); Input.ShowTextBox("Option3", "option3"); Input.EndTabbedPanel();